|
Foxit PDF SDK
|
Public Member Functions | |
| def | ModelNode () |
| Constructor. More... | |
| def | GetFirstChildNode () |
| Get the first child node of current node. More... | |
| def | GetName () |
| Get the name of current node. More... | |
| def | GetNextSiblingNode () |
| Get the next sibling node of current node. More... | |
| def | GetNodeType () |
| Get the type of the node. More... | |
| def | GetParentNode () |
| Get the parent node of current node. More... | |
| def | IsEmpty () |
| Check whether current object is empty or not. More... | |
| def | IsVisible () |
| Check whether current node is visible or not. More... | |
| def | SetVisible (is_visible) |
| Set the visibility of current node. More... | |
Static Public Attributes | |
| e_TypeAmbientLight = _fsdk.ModelNode_e_TypeAmbientLight | |
| Ambient light. | |
| e_TypeBone = _fsdk.ModelNode_e_TypeBone | |
| Bone. | |
| e_TypeClippingPlane = _fsdk.ModelNode_e_TypeClippingPlane | |
| Clipping plane. | |
| e_TypeDummy = _fsdk.ModelNode_e_TypeDummy | |
| Dummy. | |
| e_TypeGroup = _fsdk.ModelNode_e_TypeGroup | |
| Group. | |
| e_TypeMarkup = _fsdk.ModelNode_e_TypeMarkup | |
| Markup. | |
| e_TypeMesh = _fsdk.ModelNode_e_TypeMesh | |
| Mesh. | |
| e_TypeModelRoot = _fsdk.ModelNode_e_TypeModelRoot | |
| Model root. | |
| e_TypeProcedural = _fsdk.ModelNode_e_TypeProcedural | |
| Procedural. | |
| e_TypePunctualLight = _fsdk.ModelNode_e_TypePunctualLight | |
| Punctual light. | |
| e_TypeSprite = _fsdk.ModelNode_e_TypeSprite | |
| Sprite. | |
| e_TypeViewCamera = _fsdk.ModelNode_e_TypeViewCamera | |
| View camera. | |
This class represents a node in the 3D model tree structure.
| def FoxitPDFSDKPython2.ModelNode.ModelNode | ( | ) |
Constructor.
Constructor, with another model node object.
| [in] | other | Another model node object. |
| def FoxitPDFSDKPython2.ModelNode.GetFirstChildNode | ( | ) |
Get the first child node of current node.
| def FoxitPDFSDKPython2.ModelNode.GetName | ( | ) |
Get the name of current node.
| def FoxitPDFSDKPython2.ModelNode.GetNextSiblingNode | ( | ) |
Get the next sibling node of current node.
| def FoxitPDFSDKPython2.ModelNode.GetNodeType | ( | ) |
Get the type of the node.
| def FoxitPDFSDKPython2.ModelNode.GetParentNode | ( | ) |
Get the parent node of current node.
| def FoxitPDFSDKPython2.ModelNode.IsEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
| def FoxitPDFSDKPython2.ModelNode.IsVisible | ( | ) |
Check whether current node is visible or not.
| def FoxitPDFSDKPython2.ModelNode.SetVisible | ( | is_visible | ) |
Set the visibility of current node.
| [in] | is_visible | A boolean value used to set the visibility of current node. true means visible, while false means invisible. |